home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
AESEVNT1.S
< prev
next >
Wrap
Text File
|
1993-03-26
|
1KB
|
56 lines
;*========================================================================
;*
;* AESFAST Public Domain GEM bindings.
;*
;*========================================================================
;*************************************************************************
;*
;* Event manager routines 1 of n.
;*
;*************************************************************************
;-------------------------------------------------------------------------
; evnt_keybd (The easy one).
;-------------------------------------------------------------------------
globl _evnt_keybd
_evnt_keybd:
move.l #$14000100,d0 ; AControl 20,0,1,0
jmp aes_do
;-------------------------------------------------------------------------
; evnt_button
;-------------------------------------------------------------------------
globl _evnt_button
_evnt_button:
; .cargs #8,bclicks,mask,state,px.l,py.l,pbutton.l,pstate.l
bclicks = 8
mask = 10
state = 12
px = 14
py = 18
pbutton = 22
pstate = 26
link a6,#-10 ; allocate intout[5].
move.l #$15030500,d0 ; AControl 21,3,5,0
moveq.l #-10,d1 ; = intout
lea bclicks(a6),a1 ; -> intin
jsr aes_call
moveq.l #-10,d1
lea px(a6),a1
jmp (a0)
; end of code